home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
sbin
/
grub-install
< prev
next >
Wrap
Text File
|
2008-10-21
|
375b
|
15 lines
#!/bin/sh
#
# Wrapper to warn user about kernel-img.conf move
#
if [ -x /usr/sbin/grub-install ]; then
if [ "$0" = "/sbin/grub-install" ]; then
echo "You shouldn't call /sbin/grub-install. Please call /usr/sbin/grub-install instead!" >&2
echo >&2
fi
exec /usr/sbin/grub-install "$@"
else
echo "Your /usr is broken; please fix it before calling this wrapper!" >&2
fi